import plotly import plotly.express as px plotly.offline.init_notebook_mode()
df = px.data.tips() fig = px.box(df, y="total_bill") fig.show()